Git環境の構築(Linux - Debian系)
1. ターミナルを開く
2. Gitの導入
code: Gitの導入.sh
$ sudo apt update
$ sudo apt upgrade
$ sudo apt install git
完了後に
code: インストールの確認.sh
$ git
と入力し
code: gitと入力した結果.sh
$ git
usage: git --version --help -C <path> -c <name>=<value>
[--exec-path=<path>] --html-path --man-path --info-path
-p | --paginate | -P | --no-pager --no-replace-objects --bare
--git-dir=<path> --work-tree=<path> --namespace=<name>
<command> <args>
のように表示されればインストール完了です。
Next > Gitの設定